home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / X11 / Xlib-xcb.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-09-18  |  426 b   |  16 lines

  1. /* Copyright (C) 2003-2006 Jamey Sharp, Josh Triplett
  2.  * This file is licensed under the MIT license. See the file COPYING. */
  3.  
  4. #ifndef XLIB_XCB_H
  5. #define XLIB_XCB_H
  6.  
  7. #include <xcb/xcb.h>
  8. #include <X11/Xlib.h>
  9.  
  10. xcb_connection_t *XGetXCBConnection(Display *dpy);
  11.  
  12. enum XEventQueueOwner { XlibOwnsEventQueue = 0, XCBOwnsEventQueue };
  13. void XSetEventQueueOwner(Display *dpy, enum XEventQueueOwner owner);
  14.  
  15. #endif /* XLIB_XCB_H */
  16.